home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- if(this.hitTest(_root.man0.collideline) && -1 < _root.man0.VelY && Flagged)
- {
- Flagged = false;
- _root.man0.VelY = 0;
- _root.man0.platform = true;
- _root.man0.jumping = false;
- _root.landsound.start();
- }
- else if(this.hitTest(_root.man0.collideline) && _root.man0.platform)
- {
- if(_parent.mover)
- {
- _root.man0.Internal_x += _parent.VelX;
- _root.man0.Internal_y += _parent.VelY * 1.4;
- }
- }
- else if(!this.hitTest(_root.collideline) && !Flagged)
- {
- _root.man0.platform = false;
- Init();
- }
- }
-